home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 280_01 / esc.c < prev    next >
Text File  |  1989-01-11  |  2KB  |  61 lines

  1. /* [esc.c of JUGPDS Vol.17] */
  2. /*
  3. *****************************************************************
  4. *                                *
  5. *    Written by  Hakuo Katayose (JUG-CP/M No.179)        *
  6. *            49-114 Kawauchi-Sanjuunin-machi        *
  7. *            Sendai, Miyagi 980                          *
  8. *            Phone: 0222-61-3219                *
  9. *                                *
  10. *       Modifird by Toshiya Oota   (JUG-CPM No.10)              *
  11. *                   Sakae ko-po 205                 *
  12. *            5-19-6 Hosoda                *
  13. *            Katusikaku Tokyo 124            *
  14. *                                *
  15. *        for MS-DOS Lattice C V3.1J & 80186/V20/V30    *
  16. *                                *
  17. *    Compiler Option: -ccu -k0(1) -ms -n -v -w        *
  18. *                                *
  19. *    Edited & tested by Y. Monma (JUG-CP/M Disk Editor)    *
  20. *            &  T. Ota   (JUG-CP/M Sub Disk Editor)    *
  21. *                                *
  22. *****************************************************************
  23. */
  24.  
  25. /* Library functions for Software Tools */
  26.  
  27. #include "stdio.h"
  28. #include "dos.h"
  29. #include "ctype.h"
  30. #include "tools.h"
  31.  
  32. /* esc - map array[i] into escaped charaters if appropriate */
  33. int  esc(array, i)
  34. int    *i;
  35. char    array[];
  36.  
  37. {
  38. char    c;
  39.  
  40.     c = array[*i];                    /*Modify 1986-11-27*/
  41.     if (c != ESCAPE)
  42.         return( (int) c);
  43.     if (array[(*i)+1] == EOS)
  44.         return(ESCAPE);
  45.     c = array[++(*i)];
  46.     c = tolower(c);
  47.     if (c == 'b')
  48.         return(BACKSPACE);
  49.     if (c == 'f')
  50.         return(FORMFEED);
  51.     if (c == 'n')
  52.         return(NEWLINE);
  53.     if (c == 'r')
  54.         return(CRETURN);
  55.     if (c == 's')
  56.         return(BLANK);
  57.     if (c == 't')
  58.         return(TAB);
  59.     return( (int) c);
  60. }
  61.